home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 25
/
Aminet 25 (1998)(GTI - Schatztruhe)[!][Jun 1998].iso
/
Aminet
/
biz
/
demo
/
TurboCalc5.lha
/
TurboCalc
/
ARexx
/
Hello.rexx
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS
UTF-8
Wrap
OS/2 REXX Batch file
|
1998-04-15
|
360 b
|
19 lines
/*
* Hello.rexx
* Example-ARexx-Script of TurboCalc2.0 © 1993 by M.Friedrich
*
* This example asks for your name (within TurboCalc)
* reads the name and prints it (in your shell)
*/
Options FailAt 0
Options Results
ADDRESS TCALC
'INPUT "Please enter your name" "Your Name:" C3'
GETVALUE C3
say "Hello" RESULT||", have a lot of fun with TurboCalc"